home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1989 …il & Dave's Excellent CD / Excellent CD HFS.raw / Utilities / ResEdit / Examples / PExamples / BuildGNRLLDEF < prev    next >
Encoding:
Text File  |  1989-01-01  |  678 b   |  26 lines  |  [TEXT/MPS ]

  1. #ResEdit PExample
  2. #This is the script file BuildGNRLLDEF which builds the Pascal GNRL LDEF example 
  3.  
  4. Open "{WorkSheet}"
  5.  
  6. set start `date -n`
  7. echo Building the ResEdit Pascal GNRL LDEF example
  8.  
  9. # Set the directory to the PExamples folder
  10. directory "{boot}"ResEdit:Examples:PExamples:
  11.  
  12. # Set the variable to indicate where ResEdit can be found.
  13. #  This variable is used by the make file to put the 
  14. #  example picker into ResEdit.
  15. set buildToName "{boot}ResEdit:ResEdit"
  16. Export buildToName
  17.  
  18. make -f MakeGNRLLDEF > temp
  19. temp
  20. delete temp
  21.  
  22. beep 
  23. set end `date -n`
  24. echo "        " built in `Evaluate ({end} - {start}) DIV 60` "minutes " `Evaluate ({end} - {start}) MOD 60` "seconds"
  25.  
  26.